projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e46d45
)
(sendmail-program): Look first in /usr/sbin.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 26 Jun 1997 07:21:42 +0000
(07:21 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 26 Jun 1997 07:21:42 +0000
(07:21 +0000)
lisp/paths.el
patch
|
blob
|
history
diff --git
a/lisp/paths.el
b/lisp/paths.el
index 96536a1b4a1adb4be0c972e688eb59ba0350d476..0f5bd956a29d8feccaf91addab930cb62ae2f5a2 100644
(file)
--- a/
lisp/paths.el
+++ b/
lisp/paths.el
@@
-113,8
+113,8
@@
Its name should end with a slash.")
(defconst sendmail-program
(cond
- ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
+ ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
(t "fakemail")) ;In ../etc, to interface to /bin/mail.
"Program used to send messages.")